--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 3fecb368e5610bf5cf01bed7badaf568a6763ca6
Parents : 86e053c
Author : Mark Qvist <mark@unsigned.io>
Date : 2023-10-26T18:57:35+02:00
Added hotkeys
Changes
Diff
diff --git a/sbapp/main.py b/sbapp/main.py
index 12171233..57398122 100644
--- a/sbapp/main.py
+++ b/sbapp/main.py
@@ -769,7 +769,10 @@ class SidebandApp(MDApp):
self.message_send_action()
if len(modifiers) > 0 and modifiers[0] == 'ctrl' and (text == "l"):
- self.announces_action(self)
+ if self.root.ids.screen_manager.current == "map_screen":
+ self.map_layers_action()
+ else:
+ self.announces_action(self)
if len(modifiers) > 0 and modifiers[0] == 'ctrl' and (text == "m"):
if self.root.ids.screen_manager.current == "messages_screen":
@@ -3350,7 +3353,6 @@ class SidebandApp(MDApp):
self.map.zoom = minz
m = self.map
- RNS.log(f"Map {m.lat} {m.lon} {m.zoom}")
nlat = self.map.lat
nlon = self.map.lon
if nlat < -89: nlat = -89
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────